home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / supersec.sql < prev    next >
Text File  |  2000-05-12  |  959b  |  22 lines

  1. /* RCSVER $Id: supersec.sql,v 1.1 1999-02-25 14:56:44-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        supersec.sql
  6. * Date:        02/23/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the supersec table. supersec contains information       
  9. *        from the supervisor security farebox record.
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE supersec
  13. (
  14.     det_seq_num    NUMBER(38)    /* pointer to mstrrec record */
  15.         CONSTRAINT ref1_supersec REFERENCES mstrrec(det_seq_num),
  16.     farebox_glid    NUMBER(38),    /* Farebox ID from global_id */
  17.         conv_date       DATE,           /* Date for this record */
  18.     command_id    NUMBER(38),    /* Command entered (from ocucmnd) */
  19.     user_id        NUMBER(38),    /* ID of user entering commmand */
  20.     CONSTRAINT pk_supersec PRIMARY KEY (det_seq_num)
  21. );
  22.